home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / Std I⁄O for C / sf_stdio.h < prev    next >
Text File  |  1988-03-02  |  373b  |  17 lines

  1. /* sf_stdio.h
  2.  * 
  3.  * Chris Borton, 27 February 1988
  4.  * header file for sf_stdin() and sf_stdout() functions which provide
  5.  * a SFGet/PutFile and reset that text file as stdin/stdout stream
  6.  */
  7.  
  8. /* I #define MAC in my stdio.h and use this to do prototypes */
  9.  
  10. #ifdef MAC
  11. Boolean sf_stdin(void);
  12. Boolean sf_stdout(void);
  13. #else
  14. int sf_stdin(void);
  15. int sf_stdout(void);
  16. #endif
  17.